:root {
      --primary: #fe7743;
      --secondary: #000000;
      --light: #ffffff;
      --gray: #f5f5f5;
      --dark-gray: #333333;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--dark-gray);
      overflow-x: hidden;
      margin: 0;
      padding-top: 80px; /* offset fixed header */
      background: var(--light);
    }

    a {
      text-decoration: none;
      color: inherit;
    }
/* Header & Navigation */
.topbar {
  width: 100%;
  background: var(--primary); /* uses your theme orange */
  color: var(--light); /* uses your theme white */
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.topbar-left span, .topbar-right span {
  margin-right: 10px;
}

.topbar-social {
  display: inline-block;
  color: var(--light);
  margin-right: 10px;
  transition: color 0.2s;
  font-size: 1.3em;
}

.topbar-social:hover {
  color: #000000;
}

.topbar-right span {
  margin-left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 1em;
}

@media (max-width: 600px) {
  .topbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.95em;
  }
  .topbar-right span {
    margin-left: 0;
  }
}

header {
  background: var(--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
main {
  margin-top: 120px; /* equal to header height */
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center; /* keeps items vertically centered */
  width: 100%;
  height: 70px; /* reduce from existing height for thinner bar */
  padding: 0 20px; /* reduce padding for less height */
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--secondary);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  font-weight: 500; 
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
}

/* Hamburger icon for mobile */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
    z-index: 999;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .hamburger {
    display: block;
  }
}
   

    /* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px 80px;
    }

    /* Section Titles */
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: var(--secondary);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary);
    }

    /* About Us Description */
    .about-description {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.15rem;
      color: #555;
      line-height: 1.6;
      text-align: center;
    }

    /* Video Section */
    .video-section {
      max-width: 900px;
      margin: 0 auto 60px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .video-section video {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

    /* Mission & Vision */
    .mission-vision {
      display: flex;
      gap: 60px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 80px;
    }

    .mission, .vision {
      background: var(--gray);
      border-radius: 12px;
      padding: 30px 40px;
      flex: 1 1 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      color: var(--secondary);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    /* Hover effect like your service cards */
    .mission:hover, .vision:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
      background-color: rgb(32, 28, 28);
      color: white;
    }

    /* Icon styling for mission and vision */
    .mission h3, .vision h3 {
      color: var(--primary);
      margin-bottom: 20px;
      font-size: 1.8rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mission h3 i, .vision h3 i {
      font-size: 2.2rem;
      color: var(--primary);
    }

    .mission p, .vision p {
      font-size: 1.1rem;
      line-height: 1.5;
    }

    /* Team Section */
    .team {
      margin-bottom: 80px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .team-member {
      background: var(--gray);
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
      cursor: default;
    }

    .team-member:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .team-photo {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .team-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 6px;
    }

    .team-role {
      font-size: 1rem;
      color: var(--primary);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .team-bio {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.4;
    }

    /* Footer */
    footer {
      background: var(--secondary);
      color: var(--light);
      padding: 60px 0px 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .footer-logo span {
      color: var(--primary);
    }

    .footer-about p {
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s ease;
      color: var(--light);
    }

    .social-links a:hover {
      background: var(--primary);
      color: var(--light);
    }

    .footer-links h4 {
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-links h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary);
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      opacity: 0.8;
      transition: opacity 0.3s ease;
      color: var(--light);
    }

    .footer-links a:hover {
      opacity: 1;
      color: var(--primary);
    }

    .footer-newsletter {
      max-width: 300px;
    }

    .footer-newsletter p {
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .newsletter-form {
      display: flex;
      max-width: 400px;
      border-radius: 50px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 12px 15px;
      border: none;
      border-radius: 30px 0 0 30px;
      font-family: inherit;
      font-size: 1rem;
    }

    .newsletter-form button {
      background: var(--primary);
      color: var(--light);
      border: none;
      padding: 0 20px;
      border-radius: 0 30px 30px 0;
      cursor: pointer;
      font-weight: 600;
    }
  /* Copyright section styling */
.copyright {
  background: #000; /* Optional background */
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  color: #fff;
}

/* Orange separator line */
.separator {
  width: 100%;
  height: 3px; /* Thickness of line */
  background: #f96e34 ; /* Line color */
  margin-bottom: 10px; /* Space below the line */
}
    

    @media (max-width: 768px) {
      .mission-vision {
        flex-direction: column;
        gap: 40px;
      }
    }
    .footer-about {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers everything horizontally */
    text-align: center; /* Ensures text is centered under the video */
}

.footer-video {
    display: block;
    margin: 0 auto 10px; /* Center and space below */
    width: 200px; /* Adjust size as needed */
    height: auto;
    border-radius: 6px; /* Optional: rounded corners */
    object-fit: cover; /* Ensures video maintains aspect ratio */
   
}

  /* WhatsApp Button */
.whatsappbtn {
  position: fixed;
  bottom: 20px; /* As close to the bottom as you want, adjust for mobile if needed */
  right: 20px;  /* As close to the right as you want */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}

.whatsappbtn:hover {
  background-color: #20b954;
  transform: scale(1.1);
}




/* Home Button */
.homebtn{
  position: fixed;
  bottom: 90px;                /* Just above the WhatsApp button */
  right: 20px;
  background-color: #ff6600;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  transition: 0.3s;
  z-index: 1000;
}
.homebtn:hover {
  background-color:#fff;
  border: 2px solid #ff6600;
  color :#ff6600;
  transform: scale(1.1);
}


.homebtn{
  display: none; /* Hide on desktop and tablet */
}
@media (max-width: 600px) {
  .homebtn{
    display: flex; /* Show only on phone screens */
    width: 40px;
    height: 40px;
    font-size: 22px;
    bottom: 80px; /* Adjust position for smaller button */
    right: 16px;
  }
}
